home *** CD-ROM | disk | FTP | other *** search
/ Galleria D'arte: Manet / Manet.iso / Dati / Main.dxr / 00004_Switch Mouseenter1.ls < prev    next >
Encoding:
Text File  |  2000-12-21  |  834 b   |  33 lines

  1. property pCastORIG, pCastFB1
  2.  
  3. on getPropertyDescriptionList
  4.   pippo = the memberNum of sprite the currentSpriteNum
  5.   pluto = pippo + 1
  6.   paperino = pippo + 2
  7.   propertyDescriptionList = [#pCastORIG: [#comment: "Numero elemento del Cast di origine del bottone", #format: #integer, #default: pippo], #pCastFB1: [#comment: "Numero elemento del Cast del primo feedback", #format: #integer, #default: pluto]]
  8.   return propertyDescriptionList
  9. end
  10.  
  11. on mouseEnter me
  12.   set the memberNum of sprite the currentSpriteNum to pCastFB1
  13.   cursor(280)
  14.   updateStage()
  15. end
  16.  
  17. on mouseLeave me
  18.   set the memberNum of sprite the currentSpriteNum to pCastORIG
  19.   cursor(-1)
  20.   updateStage()
  21. end
  22.  
  23. on mouseDown me
  24.   cursor(280)
  25.   updateStage()
  26. end
  27.  
  28. on mouseUp me
  29.   set the memberNum of sprite the currentSpriteNum to pCastORIG
  30.   cursor(-1)
  31.   updateStage()
  32. end
  33.